Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in / Register
S
sample_app
  • Overview
    • Overview
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Đường Sỹ Hoàng
  • sample_app
  • Merge Requests
  • !13

Merged
Opened Nov 21, 2019 by Đường Sỹ Hoàng@hoangds 
  • Report abuse
Report abuse

User microposts

×

Check out, review, and merge locally

Step 1. Fetch and check out the branch for this merge request

git fetch origin
git checkout -b user-microposts origin/user-microposts

Step 2. Review the changes locally

Step 3. Merge the branch and fix any conflicts that come up

git checkout master
git merge --no-ff user-microposts

Step 4. Push the result of the merge to GitLab

git push origin master

Note that pushing to GitLab requires write access to this repository.

Tip: You can also checkout merge requests locally by following these guidelines.

  • Discussion 27
  • Commits 10
  • Changes 39
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 21, 2019
    app/controllers/application_controller.rb
    1 1 class ApplicationController < ActionController::Base
    2 2 protect_from_forgery with: :exception
    3 3 include SessionsHelper
    4
    5 private
    6
    7 # Confirms a logged-in user.
    8 def logged_in_user
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      indent, chú ý lỗi này, a comment nhiều lần r

      indent, chú ý lỗi này, a comment nhiều lần r
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 2 of the diff

      Nov 21, 2019

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4378&start_sha=2ded87fffc18113b351220c57b5213586baa8f6d#7dc0dd94f601e507e2a20bad6adcf12a51caa380_8_7)
      Toggle commit list
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on the diff Nov 21, 2019
    Resolved by Son Do Hong Nov 21, 2019
    app/controllers/microposts_controller.rb 0 → 100644
    1 class MicropostsController < ApplicationController
    2 before_action :logged_in_user, only: [:create, :destroy]
    3 before_action :correct_user, only: :destroy
    4
    5 def create
    6 @micropost = current_user.microposts.build(micropost_params)
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      dùng method khác thay cho build có được không?

      dùng method khác thay cho `build` có được không?
    • Đường Sỹ Hoàng @hoangds commented Nov 21, 2019
      Master

      Ta có thể dùng method new thay thế cho build vì build chỉ là alias(tên gọi khác) của newvà 2 method này không khác gì nhau chugn1 đều chung mục đích tạo ra object trong memory.

      Ta có thể dùng method `new` thay thế cho `build` vì `build` chỉ là alias(tên gọi khác) của `new`và 2 method này không khác gì nhau chugn1 đều chung mục đích tạo ra object trong memory.
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 22, 2019
    app/controllers/users_controller.rb
    9 9
    10 10 def show
    11 11 @user = User.find(params[:id])
    12 redirect_to root_url and return unless @user.activated
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      sao lại xóa dòng này?

      sao lại xóa dòng này?
    • Đường Sỹ Hoàng @hoangds commented Nov 21, 2019
      Master

      em xoá dòng này vì dòng này thuộc phần exercise 11.40 của chương 11

      em xoá dòng này vì dòng này thuộc phần exercise 11.40 của chương 11
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      @hoangds có và không có dòng này thì luồng xử lí sẽ khác gì nhau nhỉ \

      @hoangds có và không có dòng này thì luồng xử lí sẽ khác gì nhau nhỉ \
    • Đường Sỹ Hoàng @hoangds commented Nov 22, 2019
      Master

      Khi có dòng này thì lúc bấm vào index /users website sẽ hiển thị ra các user đã kích hoạt tài khoản thông qua xác nhận email. Ngược lại nếu không có dòng naỳ thì nó sẽ hiển thị ra tất các user có trong databse.

      Khi có dòng này thì lúc bấm vào index /users website sẽ hiển thị ra các user đã kích hoạt tài khoản thông qua xác nhận email. Ngược lại nếu không có dòng naỳ thì nó sẽ hiển thị ra tất các user có trong databse.
    • Son Do Hong @sondh commented Nov 22, 2019
      Master

      @hoangds không đúng, kiểm tra lại xem

      @hoangds không đúng, kiểm tra lại xem
    • Đường Sỹ Hoàng @hoangds commented Nov 22, 2019
      Master

      Khi có dòng này thì lúc bấm vào index /users website sẽ chỉ hiển thị ra danh sách user đã kích hoạt tài khoản. Nếu không có dòng này thì hàm show sẽ tìm các id user đang có trong databse để xuất ra.

      Khi có dòng này thì lúc bấm vào index /users website sẽ chỉ hiển thị ra danh sách user đã kích hoạt tài khoản. Nếu không có dòng này thì hàm `show` sẽ tìm các id user đang có trong databse để xuất ra.
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 7 of the diff

      Nov 22, 2019

      changed this line in version 7 of the diff

      changed this line in [version 7 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4383&start_sha=87f261efe8054667a2f06e5a38759f6424683971#28f48e0bc2718ddf87752d15b58a0016c13baf1c_12_12)
      Toggle commit list
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 21, 2019
    app/helpers/microposts_helper.rb 0 → 100644
    1 module MicropostsHelper
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      xóa file

      xóa file
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 2 of the diff

      Nov 21, 2019

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4378&start_sha=2ded87fffc18113b351220c57b5213586baa8f6d#16f68d2c9b3ce85fbf8348b78520694d2fde5458_1_0)
      Toggle commit list
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 21, 2019
    app/models/micropost.rb 0 → 100644
    1 class Micropost < ApplicationRecord
    2 belongs_to :user
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      thứ tự marco ko đúng

      thứ tự marco ko đúng
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 2 of the diff

      Nov 21, 2019

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4378&start_sha=2ded87fffc18113b351220c57b5213586baa8f6d#2b16b5052ecc944f27e07e88646218c9479b4103_2_2)
      Toggle commit list
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on the diff Nov 21, 2019
    Resolved by Son Do Hong Nov 21, 2019
    app/models/user.rb
    3 3
    4 4 attr_accessor :remember_token, :activation_token, :reset_token
    5 5
    6 has_many :microposts
    7 has_many :microposts, dependent: :destroy
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      tại sao phải cần đến 2 dòng?

      tại sao phải cần đến 2 dòng?
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 21, 2019
    app/views/static_pages/home.html.erb
    2 <div class="row">
    3 <aside class="col-md-4">
    4 <section class="user_info">
    5 <%= render "shared/user_info" %>
    6 </section>
    7 <section class="micropost_form">
    8 <%= render "shared/micropost_form" %>
    9 </section>
    10 </aside>
    11 <div class="col-md-8">
    12 <h3>Micropost Feed</h3>
    13 <%= render "shared/feed" %>
    14 </div>
    15 </div>
    16 <% else %>
    1 17 <div class="center jumbotron">
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      indent

      indent
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 2 of the diff

      Nov 21, 2019

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4378&start_sha=2ded87fffc18113b351220c57b5213586baa8f6d#3f5e61ffd63c9aa71b19651f2f9a556a610ab4e2_17_16)
      Toggle commit list
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 21, 2019
    app/views/users/edit.html.erb
    1 1 <% provide(:title, "Edit user") %>
    2 <% provide(:button_text, "Save changes") %>
    3 2 <h1>Update your profile</h1>
    3
    4 4 <div class="row">
    5 5 <div class="col-md-6 col-md-offset-3">
    6 <%= render "form" %>
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      sao lại xóa partial

      sao lại xóa partial
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 4 of the diff

      Nov 21, 2019

      changed this line in version 4 of the diff

      changed this line in [version 4 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4380&start_sha=20870c18002af602c55cfc129e0042dbc9340fcc#f341a6263d9803e768a000b11a0a610ffacae2eb_9_8)
      Toggle commit list
    Please register or sign in to reply
  • Đường Sỹ Hoàng @hoangds

    added 1 commit

    • f2e2d3dc - Fixed coding styles

    Compare with previous version

    Nov 21, 2019

    added 1 commit

    • f2e2d3dc - Fixed coding styles

    Compare with previous version

    added 1 commit * f2e2d3dc - Fixed coding styles [Compare with previous version](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4378&start_sha=2ded87fffc18113b351220c57b5213586baa8f6d)
    Toggle commit list
  • Đường Sỹ Hoàng @hoangds

    added 1 commit

    • 20870c18 - Removed unuse files

    Compare with previous version

    Nov 21, 2019

    added 1 commit

    • 20870c18 - Removed unuse files

    Compare with previous version

    added 1 commit * 20870c18 - Removed unuse files [Compare with previous version](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4379&start_sha=f2e2d3dc8a38363c391b8ed54e1ba9cab5a38bad)
    Toggle commit list
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 21, 2019
    app/views/users/new.html.erb
    1 1 <% provide(:title, "Sign up") %>
    2 2 <% provide(:button_text, "Create my account") %>
    3 3 <h1>Sign up</h1>
    4
    4 5 <div class="row">
    5 6 <div class="col-md-6 col-md-offset-3">
    6 <%= render "form" %>
    7 <%= render "form" %>
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      indent

      indent
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 4 of the diff

      Nov 21, 2019

      changed this line in version 4 of the diff

      changed this line in [version 4 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4380&start_sha=20870c18002af602c55cfc129e0042dbc9340fcc#0dad2ae568e6e543c7b3773f6343332c883889a4_7_7)
      Toggle commit list
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 21, 2019
    app/views/users/edit.html.erb
    1 1 <% provide(:title, "Edit user") %>
    2 2 <% provide(:button_text, "Save changes") %>
    3
    3 4 <h1>Update your profile</h1>
    5
    4 6 <div class="row">
    5 7 <div class="col-md-6 col-md-offset-3">
    6 <%= render "form" %>
    8 <%= render "form" %>
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      dư space

      dư space
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 4 of the diff

      Nov 21, 2019

      changed this line in version 4 of the diff

      changed this line in [version 4 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4380&start_sha=20870c18002af602c55cfc129e0042dbc9340fcc#f341a6263d9803e768a000b11a0a610ffacae2eb_8_8)
      Toggle commit list
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 22, 2019
    app/views/static_pages/home.html.erb
    1 <% if logged_in? %>
    2 <div class="row">
    3 <aside class="col-md-4">
    4 <section class="user_info">
    5 <%= render "shared/user_info" %>
    6 </section>
    7 <section class="micropost_form">
    8 <%= render "shared/micropost_form" %>
    9 </section>
    10 </aside>
    11 <div class="col-md-8">
    12 <h3>Micropost Feed</h3>
    13 <%= render "shared/feed" %>
    14 </div>
    15 </div>
    16 <% else %>
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      indent

      indent
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      <% else %> indent dòng này ko đúng

      `<% else %>` indent dòng này ko đúng
    • Son Do Hong @sondh commented Nov 22, 2019
      Master

      vẫn không đúng

      vẫn không đúng
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 6 of the diff

      Nov 22, 2019

      changed this line in version 6 of the diff

      changed this line in [version 6 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4382&start_sha=afd54469babc84a0a7a0a54dec5c135f45210c14#3f5e61ffd63c9aa71b19651f2f9a556a610ab4e2_16_16)
      Toggle commit list
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 21, 2019
    Last updated by Đường Sỹ Hoàng Nov 21, 2019
    app/views/microposts/_micropost.html.erb 0 → 100644
    1 <li id="micropost-<%= micropost.id %>">
    2 <%= link_to gravatar_for(micropost.user, size: 50), micropost.user %>
    3 <span class="user"><%= link_to micropost.user.name, micropost.user %></span>
    4 <span class="content">
    5 <%= micropost.content %>
    6 <%= image_tag micropost.picture.url if micropost.picture? %>
    7 </span>
    8 <span class="timestamp">
    9 Posted <%= time_ago_in_words(micropost.created_at) %> ago.
    10 <% if current_user?(micropost.user) %>
    11 <%= link_to "delete", micropost, method: :delete, data: { confirm: "You sure?" } %>
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      indent

      indent
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 4 of the diff

      Nov 21, 2019

      changed this line in version 4 of the diff

      changed this line in [version 4 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4380&start_sha=20870c18002af602c55cfc129e0042dbc9340fcc#df39539436da4e04f3298031f3a3d4ed13c42a72_11_11)
      Toggle commit list
    Please register or sign in to reply
  • Đường Sỹ Hoàng @hoangds

    added 1 commit

    • 1efda6a9 - Fixed indentation

    Compare with previous version

    Nov 21, 2019

    added 1 commit

    • 1efda6a9 - Fixed indentation

    Compare with previous version

    added 1 commit * 1efda6a9 - Fixed indentation [Compare with previous version](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4380&start_sha=20870c18002af602c55cfc129e0042dbc9340fcc)
    Toggle commit list
  • Son Do Hong
    @sondh started a discussion on the diff Nov 21, 2019
    Resolved by Son Do Hong Nov 22, 2019
    app/models/user.rb
    3 3
    4 4 attr_accessor :remember_token, :activation_token, :reset_token
    5 5
    6 has_many :microposts, dependent: :destroy
    7
    • Son Do Hong @sondh commented Nov 21, 2019
      Master

      có và không có dependent: :destroy sẽ khác gì nhau nhỉ

      có và không có `dependent: :destroy` sẽ khác gì nhau nhỉ
    • Đường Sỹ Hoàng @hoangds commented Nov 22, 2019
      Master

      Có dependent: :destroy thì khi ta xoá user trong databse các dữ liệu được liên kết với user trong trường hợp này là các microposts sẽ bị xoá theo. Ngược lại nếu như không có dependent: :destroy thì khi xoá user các micrposts sẽ vẫn còn lưu trữ trong database.

      Có `dependent: :destroy` thì khi ta xoá user trong databse các dữ liệu được liên kết với user trong trường hợp này là các microposts sẽ bị xoá theo. Ngược lại nếu như không có `dependent: :destroy` thì khi xoá user các micrposts sẽ vẫn còn lưu trữ trong database.
    • Son Do Hong @sondh commented Nov 22, 2019
      Master

      @hoangds chỉ khi em gọiuser.destroy thì microposts mới bị xóa thôi nhé nếu em gọi user.delete thì microposts sẽ không bị xóa

      @hoangds chỉ khi em gọi`user.destroy` thì microposts mới bị xóa thôi nhé nếu em gọi `user.delete` thì microposts sẽ không bị xóa
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on an old version of the diff Nov 22, 2019
    Last updated by Đường Sỹ Hoàng Nov 22, 2019
    app/models/micropost.rb 0 → 100644
    1 class Micropost < ApplicationRecord
    2 default_scope -> { order(created_at: :desc) }
    3
    4 mount_uploader :picture, PictureUploader
    5
    6 belongs_to :user
    7
    8 validates :user_id, presence: true
    9 validates :content, presence: true, length: { maximum: 140 }
    10 validate :picture_size
    11
    12 private
    13
    14 # Validates the size of an uploaded picture.
    15 def picture_size
    • Son Do Hong @sondh commented Nov 22, 2019
      Master

      ?

      ?
    • Đường Sỹ Hoàng @hoangds

      changed this line in version 5 of the diff

      Nov 22, 2019

      changed this line in version 5 of the diff

      changed this line in [version 5 of the diff](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4381&start_sha=1efda6a9e7982df88614864af5bc342d65b0087a#2b16b5052ecc944f27e07e88646218c9479b4103_15_14)
      Toggle commit list
    Please register or sign in to reply
  • Son Do Hong
    @sondh started a discussion on the diff Nov 22, 2019
    Resolved by Son Do Hong Nov 22, 2019
    app/controllers/application_controller.rb
    1 1 class ApplicationController < ActionController::Base
    2 2 protect_from_forgery with: :exception
    3 3 include SessionsHelper
    4
    5 private
    6
    7 # Confirms a logged-in user.
    8 def logged_in_user
    • Son Do Hong @sondh commented Nov 22, 2019
      Master

      hàm này bị trùng lặp

      hàm này bị trùng lặp
    Please register or sign in to reply
  • Đường Sỹ Hoàng @hoangds

    added 1 commit

    • afd54469 - Removed unuse function & fixed identation

    Compare with previous version

    Nov 22, 2019

    added 1 commit

    • afd54469 - Removed unuse function & fixed identation

    Compare with previous version

    added 1 commit * afd54469 - Removed unuse function &amp; fixed identation [Compare with previous version](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4381&start_sha=1efda6a9e7982df88614864af5bc342d65b0087a)
    Toggle commit list
  • Son Do Hong
    @sondh started a discussion on the diff Nov 22, 2019
    Resolved by Son Do Hong Nov 22, 2019
    app/models/micropost.rb 0 → 100644
    1 class Micropost < ApplicationRecord
    2 default_scope -> { order(created_at: :desc) }
    3
    4 mount_uploader :picture, PictureUploader
    5
    6 belongs_to :user
    7
    8 validates :user_id, presence: true
    9 validates :content, presence: true, length: { maximum: 140 }
    10 validate :picture_size
    • Son Do Hong @sondh commented Nov 22, 2019
      Master

      chỗ này dùng validates được không hay phải dùng validate

      chỗ này dùng `validates` được không hay phải dùng `validate`
    • Đường Sỹ Hoàng @hoangds commented Nov 22, 2019
      Master

      Chỗ này không được dùng validates mà phải dùng validate vì ở đây picture_size là 1 custom validator method do ta viết. Ta chỉ dùng validates cho các method chung trong rails thường sử dụng như presence, length,...

      Chỗ này không được dùng `validates` mà phải dùng `validate` vì ở đây `picture_size` là 1 custom validator method do ta viết. Ta chỉ dùng `validates` cho các method chung trong rails thường sử dụng như presence, length,...
    Please register or sign in to reply
  • Đường Sỹ Hoàng @hoangds

    added 1 commit

    • 87f261ef - Fixed identation

    Compare with previous version

    Nov 22, 2019

    added 1 commit

    • 87f261ef - Fixed identation

    Compare with previous version

    added 1 commit * 87f261ef - Fixed identation [Compare with previous version](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4382&start_sha=afd54469babc84a0a7a0a54dec5c135f45210c14)
    Toggle commit list
  • Đường Sỹ Hoàng @hoangds

    added 1 commit

    • 26f9ddef - Final commit

    Compare with previous version

    Nov 22, 2019

    added 1 commit

    • 26f9ddef - Final commit

    Compare with previous version

    added 1 commit * 26f9ddef - Final commit [Compare with previous version](https://gitlab.zigexn.vn/hoangds/sample_app/merge_requests/13/diffs?diff_id=4383&start_sha=87f261efe8054667a2f06e5a38759f6424683971)
    Toggle commit list
  • Son Do Hong @sondh

    mentioned in commit 3f81f3b1

    Nov 22, 2019

    mentioned in commit 3f81f3b1

    mentioned in commit 3f81f3b151289716307cfaf0770c9fec7b7a79ab
    Toggle commit list
  • Son Do Hong @sondh

    merged

    Nov 22, 2019

    merged

    merged
    Toggle commit list
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment
Son Do Hong
Assignee
Son Do Hong @sondh
Assign to
None
Milestone
None
Assign milestone
Time tracking
2
2 participants
Reference: hoangds/sample_app!13
×

Revert this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.
×

Cherry-pick this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.