Skip to content

Commit

Permalink
Updated GfG URL and Repository Description.
Browse files Browse the repository at this point in the history
  • Loading branch information
AtharvaNanavate committed Nov 8, 2023
1 parent 58fee41 commit 29fab5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const createRepositoryStatusCode = (responseText, statusCode, repositoryName) =>
default:
chrome.storage.local.set({ current_phase: 'solve_and_push' }, () => {
$('#error_info').hide();
$('#success_acknowledgement').html(`Successfully created <a target="blank" href="${responseText.html_url}">${repositoryName}</a>. Start solving on <a href="https://practice.geeksforgeeks.org/">GeeksforGeeks</a> now!`,);
$('#success_acknowledgement').html(`Successfully created <a target="blank" href="${responseText.html_url}">${repositoryName}</a>. Start solving on <a href="https://www.geeksforgeeks.org/explore">GeeksforGeeks</a> now!`,);
$('#success_acknowledgement').show();
$('#unlinkRepository').show();

Expand All @@ -75,7 +75,7 @@ const createRepository = (accessToken, repositoryName) => {
name,
private: true,
auto_init: true,
description: 'This repository contains my solutions to various GeeksforGeeks DSA problems. The solutions are organized by the level of difficulty - Created using [GfG To GitHub](https://github.com/AtharvaNanavate/GfG-To-GitHub)',
description: 'This repository serves as a collection of my solutions to various GeeksforGeeks Data Structures and Algorithms (DSA) problems, organized by the level of difficulty. - Created using [GfG To GitHub](https://github.com/AtharvaNanavate/GfG-To-GitHub)',
};
repositoryInit = JSON.stringify(repositoryInit);

Expand Down Expand Up @@ -160,7 +160,7 @@ const linkRepo = (accessToken, repositoryName) => {
{current_phase:'solve_and_push', repo: responseText.html_url},
() => {
$('#error_info').hide();
$('#success_acknowledgement').html(`Successfully linked <a target="blank" href="${responseText.html_url}">${repositoryName}</a> to 'GfG To GitHub'. Start solving on <a href="https://practice.geeksforgeeks.org/">GeeksforGeeks</a>&nbsp; now!`,);
$('#success_acknowledgement').html(`Successfully linked <a target="blank" href="${responseText.html_url}">${repositoryName}</a> to 'GfG To GitHub'. Start solving on <a href="https://www.geeksforgeeks.org/explore">GeeksforGeeks</a>&nbsp; now!`,);
$('#success_acknowledgement').show();
$('#unlinkRepository').show();
},
Expand Down

0 comments on commit 29fab5c

Please sign in to comment.