Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 595 Bytes

project-design.md

File metadata and controls

46 lines (28 loc) · 595 Bytes

Project Design

Front end design

Adobe XD Link:

API

/create

Query Arguements:

  • original: The orginal url

  • alias: The new alias for redirect. If not specified, a random alias will be returned

Response

  • original: The orginal url

  • alias: The new alias for redirect.

/<alias>

Query Arguments:

  • None

Response

  • original: The original url

Database

SQL

CREATE TABLE urlredirect (
    id INT NOT NULL AUTO_INCREMENT,
    original TEXT NOT NULL,
    alias TEXT NOT NULL,
    createdOn DATETIME NOT NULL,
    PRIMARY KEY(id),
    UNIQUE(alias)
);